home *** CD-ROM | disk | FTP | other *** search
- # make file for CPP.EXE
-
- OBJS = cpp1.o cpp2.o cpp3.o cpp4.o cpp5.o cpp6.o
-
- SOURCES = cpp1.c cpp2.c cpp3.c cpp4.c cpp5.c cpp6.c
-
- # The generic dependency that .o files depend upon .c files
- # and the generic operation that the Manx C compiler is used
- # to create the .o files from the .c files.
- #
- .c.o:
- cc $<
-
- # The rules for linking
- #
- cpp.exe : $(OBJS)
- ln $(OBJS) -lm -lc
-
- cpp1.o cpp2.o cpp3.o cpp4.o cpp5.o cpp6.o : cpp.h cppdef.h
-
- list : $(SOURCES)
- ccref -fl $(SOURCES) >cpp.lst
-
- lint : $(SOURCES)
- prec -I\manx\headers\ $(SOURCES) \manx\clib.pre >cpp.err
-
- # end of CPP.MAK
-